home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-08-12 | 1.9 KB | 71 lines | [TEXT/MPS ] |
- {
- File: QD3DString.p
-
- Contains: Q3CString methods
-
- Version: Technology: Quickdraw 3D 1.5.1
- Release: Universal Interfaces 3.0.1
-
- Copyright: © 1995-1997 by Apple Computer, Inc., all rights reserved.
-
- Bugs?: Please include the the file and version information (from above) with
- the problem description. Developers belonging to one of the Apple
- developer programs can submit bug reports to:
-
- devsupport@apple.com
-
- }
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
- {$IFC NOT UsingIncludes}
- UNIT QD3DString;
- INTERFACE
- {$ENDC}
-
- {$IFC UNDEFINED __QD3DSTRING__}
- {$SETC __QD3DSTRING__ := 1}
-
- {$I+}
- {$SETC QD3DStringIncludes := UsingIncludes}
- {$SETC UsingIncludes := 1}
-
- {$IFC UNDEFINED __QD3D__}
- {$I QD3D.p}
- {$ENDC}
-
-
- {$PUSH}
- {$ALIGN POWER}
- {$LibExport+}
-
- {*****************************************************************************
- ** **
- ** String Routines **
- ** **
- ****************************************************************************}
- FUNCTION Q3String_GetType(stringObj: TQ3StringObject): LONGINT; C;
-
- {*****************************************************************************
- ** **
- ** C String Routines **
- ** **
- ****************************************************************************}
- FUNCTION Q3CString_New(str: ConstCStringPtr): TQ3StringObject; C;
- FUNCTION Q3CString_GetLength(stringObj: TQ3StringObject; VAR length: LONGINT): TQ3Status; C;
- FUNCTION Q3CString_SetString(stringObj: TQ3StringObject; str: ConstCStringPtr): TQ3Status; C;
- FUNCTION Q3CString_GetString(stringObj: TQ3StringObject; VAR str: CStringPtr): TQ3Status; C;
- FUNCTION Q3CString_EmptyData(VAR str: CStringPtr): TQ3Status; C;
-
- {$ALIGN RESET}
- {$POP}
-
- {$SETC UsingIncludes := QD3DStringIncludes}
-
- {$ENDC} {__QD3DSTRING__}
-
- {$IFC NOT UsingIncludes}
- END.
- {$ENDC}
-